home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / text / edit / envwrd41.lha / envWRD41 / source / words / defs.h next >
C/C++ Source or Header  |  1996-10-23  |  2KB  |  67 lines

  1. /// "includes"
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <stdarg.h>
  6. #include <string.h>
  7. #include <ctype.h>
  8. #include <exec/types.h>
  9. #include <exec/ports.h>
  10. #include <exec/semaphores.h>
  11. #include <exec/memory.h>
  12. #include <exec/libraries.h>
  13. #include <dos/dos.h>
  14. #include <dos/dostags.h>
  15. #include <utility/tagitem.h>
  16. #include <intuition/intuitionbase.h>
  17. #include <libraries/gadtools.h>
  18. #include <rexx/errors.h>
  19. #include <rexx/rxslib.h>
  20. #include <devices/audio.h>
  21. #include <reqtools/include/reqtools.h>
  22. #include <clib/exec_protos.h>
  23. #include <clib/alib_protos.h>
  24. #include <clib/dos_protos.h>
  25. #include <clib/graphics_protos.h>
  26. #include <clib/intuition_protos.h>
  27. #include <clib/diskfont_protos.h>
  28. #include <clib/rexxsyslib_protos.h>
  29. #include <clib/gadtools_protos.h>
  30. #include <reqtools/clib/reqtools_protos.h>
  31.  
  32. #define LibCall    __geta4 __regargs
  33. #define Prototype  extern
  34.  
  35. #include "golded:developer/api/include/api.h"
  36. #include "golded:developer/golded/include/golded.h"
  37. #include "o/lib-protos.h"
  38.  
  39. #ifndef RC_OK
  40. #define RC_OK   0L
  41. #endif
  42.  
  43. #ifndef RC_WARN
  44. #define RC_WARN 5L
  45. #endif
  46.  
  47. extern const char LibName[];
  48. extern const char LibId[];
  49.  
  50. ///
  51. /// "globals"
  52.  
  53. extern BOOL  IsLetter  [256];
  54. extern BOOL  IsTrigger [256];
  55. extern BOOL  IsBoundary[256];
  56. extern BOOL  Online;
  57. extern UWORD Volume;
  58.  
  59. extern struct SignalSemaphore  ISpellSemaphore;
  60. extern struct Library         *IntuitionBase;
  61. extern struct Library         *DiskfontBase;
  62. extern struct GfxBase         *GfxBase;
  63. extern struct Library         *GadToolsBase;
  64. extern struct Library         *ReqToolsBase;
  65.  
  66. ///
  67.